* babl/babl-fish.c: (babl_fish_process): swapped source and
destination around in memcpy.
svn path=/trunk/; revision=251
+2007-11-13 Øyvind Kolås <pippin@gimp.org>
+
+ * babl/babl-fish.c: (babl_fish_process): swapped source and
+ destination around in memcpy.
+
2007-11-13 Øyvind Kolås <pippin@gimp.org>
* babl/babl-fish.c: (go_fishing): optimized fishing when looking
{
if (babl->fish.source == babl->fish.destination)
{ /* XXX: we're assuming linear buffers */
- memcpy (source, destination, n * babl->fish.source->format.bytes_per_pixel);
+ memcpy (destination, destination, n * babl->fish.source->format.bytes_per_pixel);
ret = n;
}
else